Added documentation about how to use the unit test runner.
[adiumx.git] / Plugins / Purple Service / ESPurpleMeanwhileContactAdditionController.h
blobe46c57d9e6879173fe23fb7f2787dbb08917c512
1 //
2 // ESPurpleMeanwhileContactAdditionController.h
3 // Adium
4 //
5 // Created by Evan Schoenberg on 4/29/05.
6 // Copyright 2006 The Adium Team. All rights reserved.
7 //
9 #import "ESPurpleRequestAbstractWindowController.h"
11 @interface ESPurpleMeanwhileContactAdditionController : ESPurpleRequestAbstractWindowController {
12 IBOutlet NSImageView *imageView_meanwhile;
14 IBOutlet NSTextField *textField_header;
15 IBOutlet NSTextField *textField_message;
17 IBOutlet NSTableView *tableView_choices;
19 IBOutlet NSButton *button_OK;
20 IBOutlet NSButton *button_cancel;
22 NSDictionary *infoDict;
25 + (ESPurpleMeanwhileContactAdditionController *)showContactAdditionListWithDict:(NSDictionary *)inInfoDict;
26 - (IBAction)pressedButton:(id)sender;
28 @end